home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
MPW_TOOL
/
TOOLS
/
TOOLS_WI
/
ICON_8
/
H_FOLDER
/
TIME.H
< prev
next >
Wrap
Text File
|
1990-03-02
|
372b
|
20 lines
typedef long time_t;
typedef long clock_t;
struct tm {
short tm_sec;
short tm_min;
short tm_hour;
short tm_mday;
short tm_mon;
short tm_year;
short tm_wday;
short tm_yday;
short tm_isdst; /* Not available on Macintosh */
short tm_hsec; /* Not available on Macintosh */
};
struct tm *gmtime(), *localtime();
char *asctime(), *ctime();
time_t time();